home *** CD-ROM | disk | FTP | other *** search
/ Apple WWDC 1996 / WWDC96_1996 (CD).toast / Technology Materials / MacApp Release 10 / MacApp Release 10 - HD Ready / Libraries / Core / Includes / CWDebug.h next >
Encoding:
Text File  |  1996-04-03  |  398 b   |  22 lines  |  [TEXT/MPS ]

  1. // CWDebug.h
  2.  
  3. #ifndef __CWDEBUG__
  4. #define __CWDEBUG__
  5.     
  6. #if defined(__MWERKS__)
  7.  
  8. #ifndef __MACAPPTYPES__
  9. #include "MacAppTypes.h"
  10. #endif
  11.     
  12. #define kxUseDefault        0
  13. #define kxUseSTE            1
  14. #define kxUseSIOUX            2
  15. #define TypeOfCWDebugging kxUseDefault
  16.  
  17. extern void InitCWDebug();
  18. extern short CWDebugHandleOneEvent(struct EventRecord *userevent);
  19.                 
  20. #endif // defined(__MWERKS__)
  21. #endif // __CWDEBUG__
  22.